function runQuery(x){

	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)
      {
      //document.getElementById('test5').innerHTML=xmlHttp.responseText;
	  //document.myForm.testing.value = "hiya";
	  document.getElementById('search_list').style.height = "100%";
	  document.getElementById('search_list').innerHTML = xmlHttp.responseText;
	  //document.category.options.innerHTML=xmlHttp.responseText;
      }
    }
  xmlHttp.open("GET","1_ajax/query.asp?FieldID=" + x ,true);
  xmlHttp.send(null);  
}
  
