function cargarHoteles(){

   var hoteles_0=new Array("-");
   var hoteles_1=new Array("[ Seleccione un hotel ]","TORRELAGUNA","LAS ROZAS");
   var hoteles_2=new Array("[ Seleccione un hotel ]","L'HOSPITALET");
   var hoteles_3=new Array("[ Seleccione un hotel ]","AEROPUERTO");

   var indice = document.hoteles.ciudad[document.hoteles.ciudad.selectedIndex].value;

   //alert(indice);

   lista_hoteles = eval("hoteles_" + indice);
   num_hoteles = lista_hoteles.length;
   document.hoteles.hotel.length = num_hoteles;
   for(i=0;i<num_hoteles;i++){
          document.hoteles.hotel.options[i].value=i;
          document.hoteles.hotel.options[i].text=lista_hoteles[i];
   } 

}


