<!-- Begin


function resetAdvancedSearch(form){
	//drop down fields

	form.subject_field_1.options[0].text = 'Select a Field';
	form.subject_field_1.options[0].selected = true;	
	if(form.term_field_1.length > 0){
		form.term_field_1.options[0].text  = '';
		form.term_field_1.length = 0;
	}

	form.subject_field_2.options[0].text = 'Select a Field';
	form.subject_field_2.options[0].selected = true;
	if(form.term_field_2.length > 0) {
		form.term_field_2.options[0].text  = '';
		form.term_field_2.length = 0;
	}
	
	form.subject_field_3.options[0].text = 'Select a Field';
	form.subject_field_3.options[0].selected = true;
	if(form.term_field_3.length > 0) {
		form.term_field_3.options[0].text  = '';
		form.term_field_3.length = 0;
	}
	
}


//--!>
