$(function() {
$("#submit_2").hide();
});
function showRecaptcha(element, submitButton, recaptchaButton, themeName) {
  Recaptcha.destroy();
  Recaptcha.create("6LfsOscSAAAAALlI_dwCRyi5MjRoHiuULyFWg4ib", element, {
        theme: themeName,
        tabindex: 0,
        callback: Recaptcha.focus_response_field
  });
  $(".recaptchaSubmitButton").hide();
  $(".recaptchaSendButton").show();
  $("#"+recaptchaButton).hide();
  $("#"+submitButton).show();
  
}
