my dropdown is like
Employee Name Employee
you can do like this:
$("#taskType option").each(function(){ if($(this).val().indexOf(":4") != -1) { $(this).prop("selected", true) } });
FIDDLE DEMO