// JavaScript Document
				 
function sel_pdt(type,gamme){
	
  xmlHttp=GetXmlHttpObject();
  if (xmlHttp==null)
  {
  //alert ("Your browser does not support AJAX!");
  return;
  } 
  xmlHttp.onreadystatechange=function()
    {
    if(xmlHttp.readyState==4)
      {
		document.getElementById('sel_pdt').innerHTML= xmlHttp.responseText ;
      }
    }


  xmlHttp.open("GET","/php/ajax.sel_pdt.php?fchoix_"+type+"="+gamme,true);
  xmlHttp.send(null);
}