Hi, mr_ixs.
You can use cookies for this. For example, you can set cookies for city, and edit some lines in main.php.
This part construct links for categories:
<a class="category cat_<?php echo osc_category_id(); ?>" href="<?php echo osc_search_category_url(); ?>">
Just add something like:
<a class="category cat_<?php echo osc_category_id(); ?>" href="<?php echo osc_search_category_url() . '&sCity=' . $_COOKIE["city"] ; ?>">
Probably you can also take city from a session, but I hadn't figure it out yet.