$(document).ready(function(){ 
 $.ajax({
   type: "GET",
	 dataType: 'jsonp',
	 jsonp: 'jsonp_callback',
   url: "http://wetter.fsphp.t-online.de/suche_de/getContent.php",
   data: "PA=" + escape(PA),
   success: function(oData){
     $("#fsphpSucheDE").append(oData[0]);

   }
 });

 });

