function clearFieldOnClick(el, text) {
	if(el && el.value == text) {
		el.value = '';
	}
}

function fillFieldOnBlur(el, text) {
	if(el && el.value == '') {
		el.value = text;
	}
}
