var xmlHttpPais

function q1cPais(str)
{
xmlHttpPais=GetPaisObject();
if (xmlHttpPais==null){alert ("Your browser does not support AJAX!");return;} 
var url="pais.php";
url=url+"?geo="+str;
//xmlHttpPais.onreadystatechange=getPaisValue;
xmlHttpPais.open("GET",url,true);
xmlHttpPais.send(null);
} 

function getPaisValue() 
{ 
if (xmlHttpPais.readyState==4)
{ 
document.getElementById("pais_seleccionado").innerHTML=xmlHttpPais.responseText;
}
}

function GetPaisObject()
{
var xmlHttpPais=null;
try
  {
  xmlHttpPais=new XMLHttpRequest();
  }
catch (e)
  {
  try
    {
    xmlHttpPais=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttpPais=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttpPais;
}
