<!--
function RefreshCity()
{
    for (i=0;i<document.SchoolRankings.strCity.length;i++)
    {
	if (document.SchoolRankings.strCity[i].checked)
	{
		SelectedCity = document.SchoolRankings.strCity[i].value;
		SelectedState = SelectedCity.substring(SelectedCity.length - 2, SelectedCity.length);
		SelectedCity = SelectedCity.substring(0, SelectedCity.length - 2);
	}
    }
}
function RefreshSchoolType()
{
    for (i=0;i<document.SchoolRankings.strSchoolType.length;i++)
    {
	if (document.SchoolRankings.strSchoolType[i].checked)
	{
		SelectedSchoolType = document.SchoolRankings.strSchoolType[i].value;
	}
    }
}
function SubmitForm()
{
    RefreshCity();
    RefreshSchoolType();
    window.location.href='/cityschools.asp?City='+SelectedCity+'&State='+SelectedState+'&SchoolType='+SelectedSchoolType;
}
//-->
