/**
  * Create a new instance of this form field.
  * @param string $name
  * @param array $options
  */
 public function __construct($name, $options = array())
 {
     parent::__construct($name, $options);
     $this->enum_values = array();
     $this->setupEnum();
 }