/**
  * vraci true v pripade, ze byla tato volba zvolena
  * @return bool
  * @access public
  */
 public function isSelected()
 {
     try {
         return array_search($this->getValue(), (array) $this->control->getValue()) !== FALSE;
     } catch (Exception $e) {
         throw $e;
     }
 }