## Script (Python) "getSchoolFee"
##bind container=container
##bind context=context
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=faculty=None
##title=
##
# $Id: getSchoolFee.py 1247 2007-01-08 20:58:43Z henrik $
"""
return SchoolFee
"""

fee1 = ("ART",
        "SSC",
        "LAW",
        "EDU",
        )
fee_1_data = ("22200","School Fee for Session 2006/2007")
fee_2_data = ("23700","School Fee for Session 2006/2007")

if faculty in fee1:
    return fee_1_data
return fee_2_data

