	 var url = "tariffprocess.php?id="; // The server-side script
	   function handleHttpResponse() {	
		if (http.readyState != 4) {
		document.body.style.cursor = "wait";
		document.getElementById('divCustomerInfo').innerHTML = " ";
		//document.body.style.cursor = "default";
		}
		if (http.readyState == 4) {
			  if(http.status==200) {
			  	var results=http.responseText;
			
				 document.getElementById('divCustomerInfo').innerHTML = results;
				 document.body.style.cursor = "default";
			  }
  			}
		}
		
	    function requestCallback(id) {   
		
        	//var name=document.getElementById('Email').value;//document.getElementById("name").value;
		//var id=document.getElementById('country').selectedindex.value;//document.getElementById("name").value;
	
		//url = url + id ;
		//alert(url);
		
			http.open("get", url+id, true);
			http.onreadystatechange = handleHttpResponse;
			http.send(null);
			
		}
		
function getHTTPObject() {
  var xmlhttp;
 
  if(window.XMLHttpRequest){
    xmlhttp = new XMLHttpRequest();
  }
  else if (window.ActiveXObject){
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    if (!xmlhttp){
        xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
    
}
  return xmlhttp;

  
}
var http = getHTTPObject(); // We create the HTTP Object