I have two HTML select boxes. I need to reset one select box when I make a selection in another.
select
&l
Here is the best solution im using. This will apply for over 1 slectbox
$("select").change(function(){ var thisval = $(this).val(); $("select").prop('selectedIndex',0); $(this).val(thisval); })