/**
  * Vrátí HTML strukturu pro zobrazní fieldu
  *
  * @author Martin Hlaváč
  * @link http://www.ktstudio.cz
  *
  * @return string
  */
 public function getField()
 {
     $html = "<select multiple=\"true\" {$this->getBasicHtml()}>";
     $html .= $this->getOptionsContent();
     $html .= "</select>";
     if ($this->hasErrorMsg()) {
         $html .= parent::getHtmlErrorMsg();
     }
     return $html;
 }