function updateList(y, ps){
		$('loading').innerHTML = '<font color="black">Please wait while the forms update</font>';
		$('featured_destination').style.visibility = 'visible';

	
		var url = 'advanced_search_call.cfm';
		var x = $F('pAir');
		var output_container = 'featured_destination';		
		
		if(y == 'pAirOn'){
			var x = 'on';
			}
		else{
			var x = 'off';		
			}

		var pars = 'offer_type=' + y + '&' + ps + '&x=' + x;
		
		var myAjax = new Ajax.Updater(
				output_container, //the div container id
				url, // the url
				{
					method: 'post', // use post because gets are cached in IE, just a tip.
					parameters: pars, // my query string
					onSuccess: function(){
							$('loading').innerHTML = ''; $('featured_destination').style.visibility = 'visible';
							$('featured_destination').style.display = 'inline';
						}	
				});
	}
	
	function changeHideState(){
		if($('pAir').checked == true){
			$('avail_D_C').style.visibility = 'visible';
		}else{
			$('avail_D_C').style.visibility = 'hidden';
		}
	}
