$(document).ready(function()
{
    $("#Doppeltarif_0").bind("focus", function() {
        $.ajax({
           type: "GET",
           url: "/site/system/33_form_ajax.php",
           data: "Doppeltarif_0="+$("#Doppeltarif_0").val(),
           success: function(msg){
               $("#EnergieeffizienzrechnerAjax").html(msg);
           }
         });
    } );


});
$(document).ready(function()
{
    $("#Doppeltarif_1").bind("focus", function() {
        $.ajax({
           type: "GET",
           url: "/site/system/33_form_ajax.php",
           data: "Doppeltarif_1="+$("#Doppeltarif_1").val(),
           success: function(msg){
               $("#EnergieeffizienzrechnerAjax").html(msg);
           }
         });
    } );


});
