/*
* Clears provided field
*/
function clearDefault(el) {
	if (el.defaultValue==el.value) el.value = ""
}

