function loadCaptcha() {
	var key = $('reCaptchaPublicKey');
	var langCode = $('reCaptchaLangCode');
    Recaptcha.create(key.value, "recaptcha-area", {
        theme: "clean",
        tabindex: -1,
        lang: langCode.value
     });
}
