function submitForm()
{
    var form0 = document.forms[0];
    var form1 = document.forms[1];

    var countries = form0.searchCustom__searchCountry;
    var selectedCountry = countries.options[countries.selectedIndex].value;
    form1.searchCustom__searchCountry.value = selectedCountry;
    //alert(form1.searchCustom__searchCountry.value);
    return true;
}