
$j(function() {

    $j("#selectEvent").submit(function() {

        if ($j("#EventFormSelect").val() != 0) {
            window.location = $j("#EventFormSelect").val();
        }

        //ALWAYS return false so that the form NEVER activates a controller action;
        //otherwise, it will generate a PageNotFound error
        return false;

    });

});


