function initSelect1(key)
{
for (var i=0;i<document.SearchForm.Country.options.length;i++){
    if (document.SearchForm.Country.options[i].value==key)
      document.SearchForm.Country.selectedIndex = i;
	}
}


function initActions(key)
{
var convkey1 = unescape(key);
convkey1 = convkey1.replace("+"," ");
fillcountry(document.SearchForm.Region, document.SearchForm.Country,0);
initSelect1(convkey1);
fillstate(document.SearchForm.Country, document.SearchForm.State,1);
}
