@necunoscut
Such setup is not possible without custom coding.
You can I.e. create array for each region id with descriptions:
$regdesc = array(1 => 'Hello word', 2 => 'Hello city', ...);
and then, if search region is present, use it:
<?php echo @$regdesc[osc_search_region()]; ?>
.. need probably bit of testing, but it's simplest way