I have select box
a b
This works for me:
$("#reset").on("click", function () { $("#my_select option[selected]").prop('selected', true); }
You find for the default option that has the select attribute and you change the selection to that option.