﻿// JScript File

function GeoChange(CatSel,xForm) {
    var tblctl;
    tblctl = CatSel; 
    if (tblctl.options[tblctl.selectedIndex].value == '-1') { 
        alert('Please Select A Geography'); 
        xForm.action = 'index.aspx'; 
        xForm.submit(); 
    } 
    else{ 
        xForm.action = 'index.aspx'; 
        xForm.submit(); 
    }
}


function CheckSingleDistrict(){
    var tblctl;
    tblctl = document.form1.dist1names1; 
    if (tblctl.options[tblctl.selectedIndex].value == '-1') { 
        alert('Please Select A School District'); 
    } 
}


