function subject_change(){
	var subj = document.form1.subject.options[document.form1.subject.selectedIndex].value;
	if(subj == 9){
		document.getElementById('other_subject').style.display = '';
	} else {
		document.getElementById('other_subject').style.display = 'none';
	}
}
