Zend\Form\View\Helper\FormSelect を使用していますが、select 要素で選択した値を設定する方法が見つかりませんでした。
$countryList = array_merge (array('empty_option' => 'Please choose...'),
$this->common()->getCountryList() );
$country->setValueOptions($countryList);
$country->setValue(array('AT' => 'AUSTRIA'));
echo $this->formSelect($country);