function valida()
{
	var x_pregunta = document.getElementById('pregunta').selectedIndex;
	var x_respuesta = document.getElementById('respuesta').value;

	if (x_pregunta > 0) {
		if (x_respuesta != '') {
			document.forms["forma_pregunta"].submit();
		} else {
			alert("DIGITE LA RESPUESTA");
			document.formulario.respuesta.select();
			document.formulario.respuesta.focus(); 
		}
	} else {
		alert("SELECCIONE UNA PREGUNTA ");
		document.formulario.pregunta.focus(); 
	}
}

function valida_nit()
{
	var x_nit = document.getElementById('nit').value;

	if (x_nit != '') {
		document.forms["forma_nit"].submit();
	} else {
		alert("DIGITE EL NIT");
		document.forma_nit.nit.select();
		document.forma_nit.nit.focus(); 
	}
}

function valida_respuesta()
{
	var x_respuesta = document.getElementById('respuesta').value;

	if (x_respuesta != '') {
		document.forms["datos_respuesta"].submit();
	} else {
		alert("DIGITE SU RESPUESTA");
		document.datos_respuesta.respuesta.select();
		document.datos_respuesta.respuesta.focus(); 
	}
}

