/**
 * @author jwhitcraft
 */

Ext.onReady(function(){
    var el = Ext.fly('retailItem').child('form');

    el.on('submit', function(e){
        var el = e.getTarget(null, null, true).child('select');
        if(el) {
            var v = el.getValue();
            if (v != 0) {
                e.getTarget().action = 'http://order.store.yahoo.net/cgi-bin/wg-order?brickyard+' + v;
            } else {
                e.stopEvent();
                alert('Please Select a Size First');
            }
        }

        return true;
    }, this);
})

