function cambia_alojamiento() {
	var valor = document.getElementById('alojamiento').value;
	if (valor == 'no') {
		document.getElementById('opciones').style.display = 'none';
		document.getElementById('opciones').innerHTML = '';
	} else {
		document.getElementById('opciones').innerHTML = '<p>Opciones</p><select name="opciones_alojamiento" class="selector" style="width: 160px;" tabindex="11"><option value="surfhouse">surfhouse rompiente norte</option><option value="apartamento">apartamento</option><option value="hotel">hotel</option><option value="turismo">turismo rural</option><option value="camping">camping</option></select>';
		document.getElementById('opciones').style.display = 'block';
	}
}

function cambia_playa() {
	var valor = document.getElementById('playa').value;
	if (valor == 'xago') {
		document.getElementById('div_alojamiento').style.display = 'none';
		document.getElementById('opciones').style.display = 'none';
		document.getElementById('div_alojamiento').innerHTML = '';
		document.getElementById('opciones').innerHTML = '';
	} else {
		document.getElementById('div_alojamiento').innerHTML = '<p>Necesitas alojamiento</p><select id="alojamiento" name="alojamiento" class="selector" style="width: 40px;" tabindex="10" onChange="cambia_alojamiento()"><option value="no">no</option><option value="si">sí</option></select>';
		document.getElementById('div_alojamiento').style.display = 'block';
	}
}

function validar() {
	document.getElementById('aviso').style.display = 'none';
	if (document.getElementById('email').value != (document.getElementById('email2').value)) {
		document.getElementById('aviso').style.display = 'block';
		return false;
	} else {
		if ((document.getElementById('email').value == "") && (document.getElementById('telefono').value == "")) {
			document.getElementById('aviso2').style.display = 'block';
			return false;
		} else {
			document.getElementById('formulario').action = '?';
			document.getElementById('formulario').submit();
			return true;
		}
	}
}

function isEmailAddress(theElement, nombre_del_elemento ) {
	var s = theElement.value;
	var  filter=/^[A-Za-z][A-Za-z0-9_\.-]*@[A-Za-z0-9_]+.[A-Za-z0-9_.]+[A-za-z]$/;
	if (s.length == 0 ) {
		return true;
	}
	if (filter.test(s)) {
		return true;
	} else {
		alert("Ingrese una dirección de correo válida");
	}
	theElement.focus();
	return false;
}