function clear_textbox(id)
{
	var textbox;
	textbox = document.getElementById(id);
	textbox.value = "";
} 
