function changeInput(text, id) {
	var item = document.getElementById(id);	
	if( item.value == text) {	
		item.style.color = "#6c6c6c";
		item.value = '';
	}
}
function restoreInput(text, id) {
	var item = document.getElementById(id);	
	if( item.value == '') {	
		item.style.color = "#aeaeae";
		item.value = text;
	}
}

