Alumni Sign up Trail Blazer Get-Post Signup Form Complete the form below First Name* Last Name* Maiden Name Graduation Year* Contact Information: Street Apt. / Suite # City State/Province Zip Code* Email* Cell Phone Home Phone Personal & Professional Updates: College/Post-Secondary Institution(s) Major/Degree(s) Participation in College Sports, Activities, and Clubs Current Occupation (unless a student) Check all that apply: Rockford High School Alum Class President Multi-Generational Family (2 or more generations attended RHS) My grand(children) graduated from RHS My child(ren) graduated from RHS My parent(s) graduated from RHS function validateform() { if (document.formName1.firstname.value == "") { alert ("First name needs to be filled out"); return false; } if (document.formName1.lastname.value == "") { alert ("Last name needs to be filled out"); return false; } if (document.formName1.email.value == "") { alert ("Email needs to be filled out"); return false; } if (document.formName1.zipcode.value == "") { alert ("Zip Code needs to be filled out"); return false; } }