public void remStudent(int SID)
        {
            Student s = this.getStudentByID(SID);

            foreach (Course c in s.getMycourses())
            {
                c.dropStu(s);
            }
            kids.Remove(s);
        }