function checkSubmit(){
        if(document.getElementById('captcha').value == "") {
          alert("OOPs !! Por favor ingrese el código de verificación");
          document.getElementById('captcha').focus();
          return false;
        }

        if(document.getElementById('cap_code').value != document.getElementById('captcha').value) {
          alert("OOPs !! El código de verificación no coincide");
          document.getElementById('captcha').focus();
          return false;
        }

        if(document.getElementById('cap_code').value == document.getElementById('captcha').value) {
          // alert("Success: I have passed captcha validation......")
        }

      }
