function gcl(evnt) {
var theCats=new Array (
evnt,
"PreK-Grade 3 Summit, Aug. 8, 2011, 9am-3pm, Hermantown Public Safety Bldg, 5111 Maple Grove Rd, Hermantown MN."
); 
for (i=0; i < theCats.length; i++) {
document.forms['Registration'].Event.options[i] = new Option();
document.forms['Registration'].Event.options[i].text = theCats[i];
document.forms['Registration'].Event.options[i].value = theCats[i];
}
}
