Hi, why a static page? You only need display the content of page, and not the link of page to click, right?
On your current theme you just need create a new php file with your content you need display on homepage. I suppose, in your current theme you have the main.php file. On that file you need call your new php file.
Let's suppose you will name your new file like: popular_cities.php (that file will contain your own code to display popular cities).
Open main.php and call popular_cities.php file inside main.php, like this:
<?php osc_current_web_theme_path('popular_cities.php'); ?>
Regards