function ask(adr, quest)
{
        if (confirm(quest))
                document.location.href=adr;
}
function miasto()
{
  var id_miasto=document.getElementById('id_miejscowosc');
  var box=document.getElementById('miejscowosc_box');
  if (id_miasto.options[id_miasto.selectedIndex].value == 0)
    box.style.display='block';
  else
    box.style.display='none';
  
  
  
}
function typobiektow()
{
  var id_miasto=document.getElementById('id_typobiektu');
  var box=document.getElementById('typobiektu_box');
  if (id_miasto.options[id_miasto.selectedIndex].value == 0)
    box.style.display='block';
  else
    box.style.display='none';
  
  
  
}
