function clearInput(target,initValue) {
	document.getElementById (target);
		if (target.value == initValue) {
		target.value = "";
	}
}