function losmejoreshoteles(inicia){
    http = createRequestObject(); 
    http.open('get', 'phpajax/busca_losmejoreshoteles.php?inicia='+inicia);
    http.onreadystatechange = function () {
		if(http.readyState == 4){
        var response = http.responseText;
        document.getElementById("losmejoreshoteles").innerHTML = response;	
        }
     }
    http.send(null);

}
