function clearText(x){
    if (x.defaultValue == x.value) {
		x.style.color = "#000000";
		x.style.fontStyle = "normal";
		x.value = "";
	} else if (x.value == "") {
		x.style.color = "#666666";
		x.style.fontStyle = "italic";
		x.value = x.defaultValue;
	}
}

