function ChangeOne()
	{
	if (document.AccFind.Country.selectedIndex < 2)
  {
    alert("That is not a valid country selection");
    document.AccFind.Country.focus();
    return (false);
  }
	document.AccFind.submit()
	};
