// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function check(){
    var error = false;
    if ($('lng').value == "") {
                error = true;

    }

    if ($('marker_titulo').value == "") {
                error = true;
                $('direccion_label').style.color = "#F00";
    }else{
         $('direccion_label').style.color = "#333";
    }
      if ($('marker_municipio_id').value == "Seleccione una provincia") {
                error = true;
                $('localidad_label').style.color = "#F00";
          
    }else{
         $('localidad_label').style.color = "#333";
    }

    if ($('marker_provincia_id').value == "") {
                error = true;
                $('provincia_label').style.color = "#F00";
    }else{
         $('provincia_label').style.color = "#333";
    }
    if (error == true) {
            alert('Asegurate de rellenar todos los campos requeridos (en rojo)  y de marcar un punto en el mapa');
    } else {
            $('form_marcador').submit();
   }

}

