$(document).ready(function()
{
	get_bundesland();
});

function get_bundesland()
{
	$.ajax({
		type: "POST",
		url: "http://" + window.location.hostname + "/ajax_php/get_bundesland.php",
		data: "s_land="+$("#landAuswahl").attr("value")+"&sel_bunland="+$("#sel_bundesland").attr("value"),
		dataType: "html",
		success: function(html){
			$("#bundesland").html(html);
			$("#s_bunland").css({width:"204px"});
			$("#s_bunland").attr({name:"bunland"});
		}
	});		
	$.ajax({
		type: "POST",
		url: "http://" + window.location.hostname + "/ajax_php/get_land_vorwahl.php",
		data: "land="+$("#landAuswahl").attr("value"),
		dataType: "text",
		success: function(text){
			var value = text.replace(/ /g, "");
			$("#landesvorwahl").attr("value",value);
		}
	});
		return false;
}
