$(document).ready(function() {   
   // clearing margin of last pixture in line
   $(".pictures > img:last").css("margin", "0px");
   $(".pictures > a > img").css("margin", "0px 0px 0px 4px");
   
   // Table behavior for Subnav
   if($(".navigation_2").height() < $("#content").height())
   {
       $(".navigation_2").height($("#content").height());
   }
   
   // clearing last seperator of servicenav
   $(".navService > li:last").css("border", "0px");
   
   
   // Formular-Logik
   
    $("#select_ort").change(function () {
        $.ajax({
            type: "POST",
            url: "../cms/includes/forms.php",
            data: "ort=" + $(this).val(),
            success: function(msg){
                $("#select_school").html(msg);
           }

        });
       
    });

   
});
