// JavaScript Document
function chgForm() {
 	window.status = 'changed';
    document.deptform.counselor_name.value = document.deptform.dept_id.options[document.deptform.dept_id.options.selectedIndex].value;
	
    document.deptform.NewAttn.value = "Y";
  }
