reset selected value to default in jquery code example
Example: reset select form jquery
$('select').each( function() {
$(this).val( $(this).find("option[selected]").val() );
});
$('select').each( function() {
$(this).val( $(this).find("option[selected]").val() );
});