How to make one country always selected?

Hope someone can help me out :)
I wanted to make Germany always selected. If this isnt possible may i can reduce the country number to 3 ? (Benelux States for example)

THANK YOU

Make one Country always selected fix!!!

It is quite simple really.. open the file.... ---> phpGoogleStoreLocator-functions.php

scroll downward until you start to see this ...

"<?
}
function show_country_codes($country = 'USA')
{
$countries =  "<select name='country'>";
if ($country)
{
   $countries .= "<option value='$country'>Currently Selected: $country</option>";
}
$countries .= "
<option value='us'>United States</option>
<option value='ca'>Canada</option>
<option value='uk'>United Kingdom</option>
<option value='um'>USA Minor Outlying Islands</option>
<option value='ad'>Andorra, Principality of</option>
<option value='ae'>United Arab Emirates</option>
<option value='af'>Afghanistan, Islamic State of</option>"

if you were to continue down that line of code you will soon find that your country is listed there.
All you would really have to do is just delete all the other options, so basically all that is left is the germany one.

I am sure that there are other ways of doing this, but I know that way will work.

Hope this helps.