$(document).ready(function()
{
	get_bundesland();
});

function get_bundesland()
{
	$.ajax({
		type: "POST",
		url: "http://" + window.location.hostname + "/ajax_php/get_bundesland.php",
		data: "s_land="+$("#s_land").attr("value")+"&sel_bunland="+$("#sel_bundesland").attr("value"),
		dataType: "html",
		success: function(html){
			$("#bundesland").html(html);
		}
	});		
		return false;
}
