diff --git a/public_html/deployment/classes/formgen.class.php b/public_html/deployment/classes/formgen.class.php
index 0f6782c5ccf7c5f481d96953a1fe83b79fe3a568..5038d952bcbe3677ebe9f83509e9d68192e2e76c 100644
--- a/public_html/deployment/classes/formgen.class.php
+++ b/public_html/deployment/classes/formgen.class.php
@@ -254,7 +254,7 @@ class formgen
                 $elementData['class'] .= " form-control" . (isset($this->aFeatures['bootstrap-select']) && $this->aFeatures['bootstrap-select'] ? " selectpicker" : "");
                 $sFormElement .= '<div class="' . $sDivClass . '">' . "\n" . '<select id="' . $sId . '" '
                     . $this->_addHtmlAtrributes(explode(",", "$sDefaultAttributes,name,onchange"), $elementData)
-                    . (isset($this->aFeatures['bootstrap-select']) && $this->aFeatures['bootstrap-select'] ? ' data-live-search="true" data-size="15"' : '');
+                    . (isset($this->aFeatures['bootstrap-select']) && $this->aFeatures['bootstrap-select'] ? ' data-live-search="true"' : '');
                 $sFormElement .= ">\n";
                 foreach ($elementData["options"] as $idOption => $aOptionData) {
                     $s = preg_replace('/\W/iu', '', $sId . $idOption);