protected function createCountryField()
 {
     $dao = new CountryDAO();
     $recordList = $dao->getSimpleList();
     $options = array(0 => '<choose>') + $dao->modifyListForSelect($recordList, '<countryName>');
     $this->form->addField(new CoreFormFieldSelect('countryId', null, $options));
 }