var xmlHttp5

function histsel()
{ 
xmlHttp5=GetXmlHttpObject();
if (xmlHttp5==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url5="histsel.asp";
xmlHttp5.onreadystatechange=stateChanged5;
xmlHttp5.open("GET",url5,true);
xmlHttp5.send(null);


}

function stateChanged5() 
{ 
if (xmlHttp5.readyState==4)
{ 
document.getElementById("histsel").innerHTML=xmlHttp5.responseText;
}
}
