I have this code, and I have it removing my first "option" because the first one says "Please Select:". Anyways, problem is, when I focus on my first "select" it removes the first "option" from EVERY select. How do I make it remove it from ONLY the currently focused one?
$(document).ready(function(){
$('select').live('focus',function() {
$('.firstoption').remove();
});
});