// JavaScript Document
function imprintRemove(imprintTextArea) {
	var txtArea = document.getElementsByName(imprintTextArea)[0];
	txtArea.value='';
	//txtArea.style.display = "none";
	document.forms[0].submit();
}

function getDropdownSelectedValue(DD_ID) {
	var e = document.getElementById(DD_ID); // select element
	var val = e.options[e.selectedIndex].value;
	return val;
}