function selectArea(area_id)
{
	document.getElementById('signup_area').value = area_id;
}

function tooltip_on(id)
{
	document.getElementById(id).className = "tooltip_on";
}
function tooltip_off(id)
{
	document.getElementById(id).className = "tooltip_off";
}
