$(document).ready(function(){
$("#city").change(function(){
$.post("/scripts/getData.php", { 'action':'streets', 'city': $(this).val()},
   function(data){
     $("#streetsSelected").html(data);
   });
$.post("/scripts/getData.php", { 'action':'tarifplans', 'city': $(this).val()},
   function(data){
     $("#tariffs").html(data);
   });
});

$("#streetsSelected").change(function(){
$.post("/scripts/getData.php", { 'action':'buildings', 'street': $(this).val(), 'city': $("#city").val()},
   function(data){
     $("#build").html(data);
   });
});
});
