
/* Clear Input field text */
function clearText(theField) {
	if (theField.defaultValue == theField.value)
    	theField.value = '';
		theField.style.color = '#333333';
}