public function GetFieldInput($id, &$params, $returnid)
 {
     $wysiwyg = $this->GetOption('wysiwyg', '0') == '1';
     $val = '';
     $js = $this->GetOption('javascript', '');
     $html5 = '';
     if ($this->GetOption('html5', '0') == '1') {
         $val = $this->Value;
         $html5 = ' placeholder="' . $this->GetOption('default') . '"';
     } else {
         $val = $this->HasValue() ? $this->Value : $this->GetOption('default');
         if ($this->GetOption('clear_default', '0') == 1) {
             $js .= ' onfocus="if(this.value==this.defaultValue) this.value=\'\';" onblur="if(this.value==\'\') this.value=this.defaultValue;"';
         }
     }
     return formbuilder_utils::create_textarea($wysiwyg, $id, $this->GetCSSId(), $val, $this->GetOption('cols', '80'), $this->GetOption('rows', '15'), $js . $html5, $this->IsRequired());
 }