@mohsan
in footer.php in theme folder you have:
<?php $regions = RegionStats::newInstance()->listRegions('%%%%', '>', 'i_num_items DESC'); ?>
<?php $i = 1; ?>
<?php foreach($regions as $r) { ?>
<?php if($i <= 12) { ?>
<span class="region-span"><a href="<?php echo osc_search_url(array('page' => 'search', 'sRegion' => $r['pk_i_id']));?>"><?php echo $r['s_name']; ?></a></span>
<?php $i++; ?>
<?php } ?>
<?php } ?>
change it to:
<?php $cities = CityStats::newInstance()->listCities('%%%%', '>', 'i_num_items DESC'); ?>
<?php $i = 1; ?>
<?php foreach($cities as $r) { ?>
<?php if($i <= 12) { ?>
<span class="region-span"><a href="<?php echo osc_search_url(array('page' => 'search', 'sCity' => $r['pk_i_id']));?>"><?php echo $r['s_name']; ?></a></span>
<?php $i++; ?>
<?php } ?>
<?php } ?>