reset select form jquery

JavaScript
 $('select').each( function() {
        $(this).val( $(this).find("option[selected]").val() );
    });
Source

Also in JavaScript: