jquery remove option from select except first code example
Example 1: jquery remove all options but first
yourSelect.find('option').not(':first').remove();
Example 2: remove first select option jquery
$(document).on('click', 'select', function() {
$(this).find('option').get(0).remove();
});