function clearTextArea() {
	
	var txt = document.send_form.text_content.value;
	//alert(txt.substr(0,1));
	if(txt.substr(0,1)=="-") {
		document.send_form.text_content.value = '' ;
	}
}