function cambiarCiudad(){
var pais = document.getElementById('paises_c');
var ciudad = document.getElementById('divCiudad');
ciudad.innerHTML = '';
if(pais.value == 'CO')
{
ciudad.innerHTML = ' ';
}
}
//valida si la ciudad escogida es otra ciudad
function validateCiudad()
{
var ciudad = document.getElementById('ciudadescolombia_c');//Otra Ciudad
if(ciudad.value == 'Otra Ciudad')
{
var otraCiudad = document.getElementById('divotrasciudadescolombia_c');
otraCiudad.innerHTML = '';
}else{
var otraCiudad = document.getElementById('divotrasciudadescolombia_c');
otraCiudad.innerHTML = '';
}
}
function validaForm(form)
{
var first_name = document.getElementById('first_name');
var last_name = document.getElementById('last_name');
var email = document.getElementById('webtolead_email1');
var email2= document.getElementById('email2');
var phone_mobile = document.getElementById('phone_mobile');
var ciudadescolombia_c = document.getElementById('ciudadescolombia_c');
var otrasciudadescolombia_c = document.getElementById('otrasciudadescolombia_c');
var mensaje = '';
var estado = true;
//valido ciudad
if(ciudadescolombia_c.value == '')
{
mensaje += 'Seleccione una ciudad \n';
estado = false;
}
//valido otra ciudad
if(ciudadescolombia_c.value == 'Otra Ciudad')
{
if(otrasciudadescolombia_c.value == '')
{
mensaje += 'Digite Otra Ciudad \n';
estado = false;
}
}
if(first_name.value == '')
{
mensaje += 'Digite Nombre \n';
estado = false;
}
if(email.value != email2.value)
{
mensaje += 'El Email debe coincidir con Repetir Email \n';
estado = false;
}
if(last_name.value == '')
{
mensaje += 'Digite Apellido \n';
estado = false;
}
if(email.value == '')
{
mensaje += 'Digite Email \n';
estado = false;
}
if(phone_mobile.value == '')
{
mensaje += 'Digite Telefono Movil \n';
estado = false;
}
if(!estado)
{
alert(mensaje);
}
return estado;
}
function limpiar_campo()
{
document.getElementById('otrasciudadescolombia_c').value="";
return false;
}