i need to get the distinct Ilans. I've tried using removeDuplicates but it didn't remove duplicates from the drop down menu.
function getUniqueCities() {
$cities = DataObject::get('Ilan', '', 'Sehir ASC');
if(!$cities) return false;
$cities->removeDuplicates('Sehir');
return $cities;
}