var locationHint = 'City, State, Country, Zip Code'; function locationFocus(elem, focus_gained) { if (focus_gained) { if (elem.value != '' && elem.value == "City, State, Country, Zip Code") { elem.value = ""; } } else { if (elem.value == "") { elem.value = "City, State, Country, Zip Code"; } } }