function get_value()
 {
     $value = parent::get_value();
     if (!($default_value = $this->get_default_value())) {
         $default_value = reset($this->choice_list);
     }
     if (!array_key_exists($value, $this->choice_list)) {
         return $default_value;
     } else {
         return $value;
     }
 }
	function get_value()
	{
	  return container_form_element :: get_value();
	}