$(document).ready(function (){
				
	$("#submit_image").click(function () { 
		
		$('#show_ret_ok').hide();
		$('#show_ret_error').hide();

		
		//Comprobamos que el campo entidad está relleno (solo para innovacion en acción)
		var select_report = document.form_li.select_report.value;
		if (select_report == '2'){
			var entidad = document.form_li.entidad.value;
			if(entidad == ''){
				alert('El campo obligatorio Nombre de la entidad está en blanco.')
				return false;
			}
				
		}
		
		var politica = document.form_li.checkpolitica.checked;
			
		if(politica == false){
				alert('Debe aceptar la política de privacidad.');
				return false;
		}
			
			
	
		if(wbValidateFormL(document.form_li,'es') == true){
			
				
			//Ponemos la capa de enviando encendida
			tb_showAlert();
					
			document.form_li.submit();	
			return true;
		}
		return false;
	});
	
	$("#select_report").change(ChangeReport);
		
	document.getElementById('select_report').selectedIndex = tipo_formulario_recibido;	

	if (show_alert_ok == '1' )
		ShowAlertFormOK();
	if (show_alert_err == '1' )
		ShowAlertFormERR();	
	
		
	
	
});

function ChangeReport(){
	
	if(this.value == "0"){
		$('#title_candidatura').text('Emprendedores.');		
		$('#nombre_entidad_tr').hide();
	}else if(this.value == "1"){
		$('#title_candidatura').text('Mujeres en el Medio Rural.');
		$('#nombre_entidad_tr').hide();
	}else if(this.value == "2"){
		$('#title_candidatura').text('Innovación en acción.');	
		$('#nombre_entidad_tr').show();
		
	}else{
		$('#title_candidatura').text('Emprendedores.');
		$('#nombre_entidad_tr').hide();
	}
}

