I am using the following statement to make it readonly but it is not working.
$(\'#cf_1268591\').attr(\"readonly\", \"readonly\");
I don\
Simple jquery to remove not selected options.
$('#your_dropdown_id option:not(:selected)').remove();