diff --git a/bin/Controls/SimpleContact.js b/bin/Controls/SimpleContact.js
index 3c0dca400f313dcd9dc1863bdb06df32e6657e83..dc5cfa358273a9025f165ba6b9d9f600f2c4d8bc 100644
--- a/bin/Controls/SimpleContact.js
+++ b/bin/Controls/SimpleContact.js
@@ -62,9 +62,16 @@ define('package/quiqqer/bricks/bin/Controls/SimpleContact', [
                         if (self.$captchaRequired && !self.$captchaResponse) {
                             QUI.getMessageHandler(function (MH) {
                                 MH.options.displayTimeMessages = 2000;
+
+                                var CaptchaElm = self.$Elm.getElement('.qui-contact-captcha');
+
+                                if (!CaptchaElm) {
+                                    CaptchaElm = undefined;
+                                }
+                                
                                 MH.addError(
                                     QUILocale.get(lg, 'brick.control.simpleContact.error.captcha_failed'),
-                                    self.$Elm.getElement('.qui-contact-captcha')
+                                    CaptchaElm
                                 );
                             });