window.addEvent('domready', function() {
    var cat_input = $('category');
    $('go_button').addEvent('click', function(e) {
        e.preventDefault();
        var regZip = /^[0-9]{5}$/;
        if (!regZip.test($('zip_code').get('value'))) {
            alert('Incorrect Zip format.');
            $('zip_code').focus();
        } else {
            window.location = '/find_dealers.aspx?zip=' + $('zip_code').get('value');
        }
    });
});
