I have two HTML select
boxes. I need to reset one select
box when I make a selection in another.
Here is how I got it to work if you just want to get it back to your first option e.g. "Choose an option" "Select_id_wrap" is obviously the div around the select, but I just want to make that clear just in case it has any bearing on how this works. Mine resets to a click function but I'm sure it will work inside of an on change as well...
$("#select_id_wrap").find("select option").prop("selected", false);