var locationHint = 'Città, Stato, Nazione, CAP';
function locationFocus(elem, focus_gained) {
if (focus_gained) {
if (elem.value != '' && elem.value == "Città, Stato, Nazione, CAP") {
elem.value = "";
}
} else {
if (elem.value == "") {
elem.value = "Città, Stato, Nazione, CAP";
}
}
}