function focus_forminput(myid, mytext) {
	if(document.getElementById(myid).value == mytext) {
		document.getElementById(myid).value = "";
		document.getElementById(myid).style.color = "2E5B6B";
		
	}
}

