﻿(function($) {
    $.fn.resetSelect = function() {
        $(this).find('option:first').attr('selected', 'selected').parent('select');
    };
})(jQuery);