// Onready
$(function(){

    $("#googleform").attr("target", "_new");

    //open a tags with the class target_new in a new window/ tab
    $("a.target_new").each(function(){
        $(this).click(function(e){
            e.preventDefault();
            window.open($(this).attr('href'));
        });
    });

    $("#googleform input[name=saddr]").click(function(){
        if($(this).val() == "Hier Ihre Postleitzahl eingeben") {
            $(this).val("");
        }
    });
});
