function JSFF_GetPrices(PickUpDropOffID)
{
var xmlHttp;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    try
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    catch (e)
      {
      alert("Your browser does not support AJAX!");
      return false;
      }
    }
  }
  xmlHttp.onreadystatechange=function()
    {
    if(xmlHttp.readyState==4)
      {
		if (xmlHttp.responseText != 'false') { 
		
			

			document.getElementById('ListPrices').innerHTML = xmlHttp.responseText;
			
			//var Names = All[0].split("|");
			//var PickUp = Names[0];

		  //document.form1.total.value=xmlHttp.responseText;
		  
		} else {
		
		document.getElementById('ListPrices').innerHTML = "";	

		  
		}
	  
      } else { 
	  document.getElementById('ListPrices').innerHTML = '<img src="images/scanner.gif">';
	  }
    }
	//var value = selObj.options[selObj.selectedIndex].value  ;
	//--- Harry code--------------
	
	
	
//	  if (value<=0 || value == null ) 
//		{
//		document.getElementById(id2).disabled=true ;
//		}
//		else
//		{
//		document.getElementById(id2).disabled=false	;
//		}

	//--- Harry code--------------	
	

  
  xmlHttp.open("GET","Scripts/GetCustomTourPrices.php?PickUpDropOffID="+PickUpDropOffID,true);
  xmlHttp.send(null);
  }
