'Parent / Guardian / Relative of a student at the fair',
'teacher'=>'Teacher / Educator',
'unistudent'=>'University or post-secondary student',
'other'=>'Other');
incomplete_check($mysqli, $fields, $u, $page_id);
form_page_begin($page_id, $fields);
form_disable_message($page_id, $closed);
$form_id = $page_id."_form";
form_begin($form_id, 'v_personal.php');
form_text($form_id, 'salutation', "Salutation", $u);
form_text($form_id, 'firstname', "First Name", $u);
form_text($form_id, 'lastname', "Last Name", $u);
form_radio_h($form_id, 'sex', 'Gender', array( 'male' => 'Male', 'female' => 'Female'), $u);
form_text($form_id, 'phone1', "Primary Phone", $u, 'tel');
form_text($form_id, 'phone2', "Secondary Phone", $u, 'tel');
form_text($form_id, 'organization', "Organization", $u);
form_text($form_id, 'city', 'City', $u['city']);
form_province($form_id, 'province', 'Province / Territory', $u);
form_lang($form_id, 'language', "Preferred Language", $u);
form_select($form_id, 'v_relation', "I Am A", $relation, $u);
form_textbox($form_id, 'v_reason', "Why do you want to volunteer?", $u);
form_submit($form_id, 'save', 'Save', 'Information Saved');
form_end($form_id);
?>