   $(document).ready(function() {

        $("#nominees").change(function() {
            var oldpath = window.location.pathname;
            var newpath = "http://" + window.location.host + $('option:selected', this).val();
            window.location = newpath;
        });
    });

