function clear_field(el, text) {
	if (el.value == text) {
		el.value = '';
		id.style.color = '#555555';
	}
}
function unclear_field(el, text) {
	if (el.value.length == 0) {
		el.value = text;
		id.style.color = '#777777';
	}
}


