/*<!-- mp_trans_disable_start -->*/ 
var ProductFareEstimate=Class.create();ProductFareEstimate=Base.extend({constructor:function()
{Event.observe(window,'load',this.windowOnLoad.bindAsEventListener(this));},windowOnLoad:function(event)
{if($('saleCountry'))
Event.observe($('saleCountry'),'change',this.onCountryChange.bindAsEventListener(this));if($('saleClass'))
Event.observe($('saleClass'),'change',this.onCountryChange.bindAsEventListener(this));},onCountryChange:function(event)
{if(Form.Element.getValue($('saleCountry'))!='NONE')
{if($('fareEstimateForm').action.match(/\?/gi))
var sParamSeparator="&";else
var sParamSeparator="?";new Ajax.Updater($('fareResults'),$('fareEstimateForm').action.replace(/#fareEstimateForm/gi,'')+sParamSeparator+'ajaxCall=1&'+Form.serialize($('fareEstimateForm')));$('formButton').focus();}}});page=new ProductFareEstimate();
 /*<!-- mp_trans_disable_end -->*/