function getqtysave(param,param1)
{
	var httpxml;
	var param2=document.getElementById('txt'+param).value;
  try
  {
  // Firefox, Opera 8.0+, Safari
  httpxml=new XMLHttpRequest();
  }
catch (e)
  {
// Internet Explorer
		  try
   			{
   				httpxml=new ActiveXObject("Msxml2.XMLHTTP");
    		}
  			catch (e)
    				{
    	  try
      		{
      		httpxml=new ActiveXObject("Microsoft.XMLHTTP");
     		}
    		catch (e)
      		{
      		alert("Your browser does not support AJAX!");
      		return false;
      		}
    		}
  }
function stateck() 
    {
	if (httpxml.readyState==3 || httpxml.readyState==2 || httpxml.readyState==1)
	{ 
		//document.getElementById("displaycombinationcategory").innerHTML='Please Wait Loading..';	
	}
    if(httpxml.readyState==4)
    {	
	    document.getElementById('displayOrder').innerHTML=httpxml.responseText;
	}
}
	
var url="getqtysave.php";
url=url+"?param="+param+"&param1="+param1+"&param2="+param2;
httpxml.onreadystatechange=stateck;
httpxml.open("GET",url,true);
httpxml.send(null);
}

