Hello
You need to edit inc/classes/BxDolProfileFields.php file -> getFormsSearch function. In the function find the code below
switch($aItem['Control']) {
case 'select' :
$aFormInput['type'] = 'select_box';
$aFormInput['attrs']['add_other'] = 'false';
break;
case 'checkbox' :
$aFormInput['type'] = $aItem['Name'] == 'LookingFor' ? 'select' : 'checkbox_set';
break;
default :
$aFormInput['type'] = $aItem['Name'] == 'Sex' ? 'checkbox_set' : 'select';
}
and add this one just after it
if($aItem['Name'] == 'Country')
$aFormInput['type'] = 'select';