(function ($) { // encapsulated $
    $(function () { // Dom Ready Shortcut

        $('.topContracts').change(function () {
            window.location.replace('/grouppurchasing/topcontracts/' + $(this).val() + '.aspx');
        });

    });
})(jQuery);    // Passing it as the param 
