function clearinput(id) {

//	Clear message text from input box

	var this_input = document.getElementById(id);
	this_input.value = "";
	this_input.style.color = "Black";
	
}
