function get_taxi(plz, api_key, div_name) {
	var taxi_host = 'www.taxipp.de'; // service_host
	var service_host = 'www.taxipp.de';
	//var url = "http://taxipp.de/taxi.php?arg=" + plz + "&callback=?";
	var service_url  = 'http://' + service_host + '/taxi.php?type=plz&kat=standard&plz=' + plz + '&callback=?'
	//alert (service_url);
	jQuery.getJSON(service_url, function(data){
			var html = "";
			try {
				result = data.Result;
				var title = result.Titel;
				var city = result.Stadt;
				var hotline = result.Hotline;
				var itemid = result.ID; //"212366";
				var taxi_href = "http://www.taxi-pp.de/index.php";
				taxi_href += "?option=com_sobi2&sobi2Task=sobi2Details&sobi2Id=" + itemid;
				html += '<a  title="taxi-pp.de" href=' + taxi_href + '>';
				html += title + ' in ' + city;
				html += ' Tel.:';
				if (hotline.Vorwahl) {
					html += '(' + hotline.Vorwahl + ") ";
				}
				html += hotline.Rufnummer;
				html += '</a>';
			}
			finally {
				jQuery("div#" + div_name).empty();
				jQuery("div#" + div_name).append(html);
			};
			return false;
		}
	);
}
