i use this in my Form:
$this->add(array( \'type\' => \'Zend\\Form\\Element\\Select\', \'name\' => \'county\', \'registerInAr
Add the disable_inarray_validator to the options:
$this->add(array( ... 'options' => array( 'disable_inarray_validator' => true, 'label' => 'county', ), ));