Here i have done solution for above query. demo link as below:
Demo: http://codebins.com/bin/4ldqp92
HTML:
JQuery:
$(function() {
$("select").click(function() {
$(this).find("option[value*='Sold Out']").prop("disabled", true);
});
});
Demo: http://codebins.com/bin/4ldqp92