	/*
	* Hide and show textbox text on click 
	*/

	function removeText(formField, theText) {

		if ( document.getElementById(formField).value === theText ) {
			document.getElementById(formField).value = "";
		}
	}
	

	function replaceText(formField, theText) {
		if ( document.getElementById(formField).value === "" ) {
			document.getElementById(formField).value = theText;
		}
	}
