// JavaScript Document
function jsDescargaPuerto() {
	ajax=nuevoAjax();
	// Envio al servidor el valor seleccionado y el combo al cual se le deben poner los datos
	ajax.open("GET", 'ajax_cboDescargaPuerto.php?IdArea='+document.getElementById('cboDescargaArea').options[document.getElementById('cboDescargaArea').selectedIndex].value+'&IdPais='+document.getElementById('cboDescargaPais').options[document.getElementById('cboDescargaPais').selectedIndex].value, true);
	ajax.onreadystatechange=function() 
	{ 
		if (ajax.readyState==1) {
			// Mientras carga elimino la opcion "Elige" y pongo una que dice "Cargando"
			elemento=document.getElementById("cboDescargaPuerto");
			elemento.disabled = true;
			elemento.length=0;
			var opcionCargando=document.createElement("option"); opcionCargando.value=0; opcionCargando.innerHTML="Cargando...";
			elemento.appendChild(opcionCargando);				
		}
		if (ajax.readyState==4) {
			// Coloco en la fila contenedora los datos que recibo del servidor
			document.getElementById('tdDescargaPuerto').innerHTML = ajax.responseText;
			marDescargaPuerto();
		} 
	}
	ajax.send(null);
	
}