Try to use .filter() in this context,
$("#taskType option").filter(function(){
return $(this).val().indexOf(':4') > -1
}).prop("selected", true);
DEMO
or use attribute contains(*=) selector
$("#taskType option[value*=':4']").prop("selected", true);
DEMO