$(function() {

    $("#submit").hide();

    $("#counties select").change(function() {
        window.location = $("#counties select option:selected").val();
    })

});