Решил вопрос вот так:
var it_last;
function toggle(it) {
if ((it_last)&&(it!=it_last)) {// скрытие предыдущего
it_last.style.display = "none";
}
it.style.display= (it.style.display=="none") ? "block" : "none";
it_last = it;
}
И HTML:
<span onclick="toggle(document.getElementById('hide1'))">
Москва
</span>
<div id="hide1" style="display:none; z-index: 9999; position: absolute; margin-left: 10px; bottom: 80%; width: 400px; height: 100px; background-color: rgba(134, 117, 80, .7); border-radius: 50px">
Адрес в Москве
</div>