
function valida() 
{
	// ===== chequeamos fecha de entrada
	var fecha_entrada = $('#fecha_entrada').val();
	if (fecha_entrada=="")
	{
		alert('Por favor, selecciona la fecha de entrada.');
  		$('#fecha_entrada').focus();
  		return false;
	}

	// ===== chequeamos número de habitaciones
	var num_hab = 0;
	$("select[name^='habitacion']").each(function()
		{ 
			num_hab = num_hab + parseInt($(this).val());			
		}
	);	
 	if (num_hab == 0) 
 	{
  		alert('Por favor, selecciona la cantidad de habitaciones que deseas.');
  		return false;
 	}  	
 	
 	return true;
}

