/**
 *
 * Copies the value of the currently selected item in a select list
 * "selectListID" to a form field fieldID.
 *
 * @access public
 * @return boolean false
 **/
function js_hiag_setValue_formField() {
	// get objects
	var sourceObj = document.forms["Kontakt"].elements[10];
	var destObj   = document.getElementsByName('sendmail')[0];

	// get value
	var value = sourceObj.options[sourceObj.selectedIndex].text;

	// set value
	destObj.value = value;

	// return false to call this function in
	// a html event handler attribute like "onclick"
	return false;
}
