Eliminar la primera opción seleccionar jQuery
$(document).on('click', 'select', function() {
$(this).find('option').get(0).remove();
});
Lonely Lynx
$(document).on('click', 'select', function() {
$(this).find('option').get(0).remove();
});