$("#FIELDID option[value='X']").remove();
$('.ct option').each(function() { if ( $(this).val() == 'X' ) { $(this).remove(); } });
$("#select-list").empty()