$('.ct option').each(function() { if ( $(this).val() == 'X' ) { $(this).remove(); }});
Or just
$('.ct option[value="X"]').remove();
Main point is that find
takes a selector string, by feeding it x
you are looking for elements named x
.