var opening=false;
function hideall() {	inputdiv=document.getElementById('cities_select');	inputdiv.className='';	opening=false;}
function showall() {	inputdiv=document.getElementById('cities_select');	inputdiv.className='shown';	opening=true; setTimeout(hedeall(),3000); }
