//Author: MR
//Description: determines which item is selected from the dropdown list and inserts corresponding text into a text field

function textField()
 {
 	var selection = document.form1.select2.value;
  	if (selection == 1)
 		{
  		document.form1.textfield2.value = ("(your 1 here)");
 		}
  		if (selection == 2)
 		{
 		 document.form1.textfield2.value = ("(your 2 here)");
 		}
 		if (selection == 3)
 		{
 		 document.form1.textfield2.value = ("(your 3 here)");
 		}
		if (selection == 4)
 		{
 		 document.form1.textfield2.value = ("(your 4 here)");
 		}
		if (selection == 5)
 		{
 		 document.form1.textfield2.value = ("(your 5 here)");
 		}

}
