function show_subtype(str)
{
	var xmlhttp;
	if(str=="")
  {
  document.getElementById("subtype").innerHTML="";
  return;
  } 
if (window.XMLHttpRequest)
  {xmlhttp=new XMLHttpRequest();
  }
else
  {xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("subtype").innerHTML=xmlhttp.responseText;
    }
  };
xmlhttp.open("GET","show_subtype.php?q="+str,true);
xmlhttp.send();
}
