function reload(form)
{
var val=form.country.options[form.country.options.selectedIndex].value; 
self.location='search.php?country=' + val ;
}
function reload3(form)
{
var val=form.country.options[form.country.options.selectedIndex].value; 
var val2=form.state.options[form.state.options.selectedIndex].value; 

self.location='search.php?country=' + val + '&state=' + val2 ;
}