Usuń JQuery First Select Option

$(document).on('click', 'select', function() {
   $(this).find('option').get(0).remove();
});
Lonely Lynx