// JavaScript Document
function clearField(currentID){
	if(currentID.value == currentID.defaultValue) currentID.value = '';
}

