// JavaScript Document
$(document).ready(function() {	
	$('a').css('cursor','pointer');
	
	$('#select_country').val('empty');
	$('#select_plz').val('empty');
	$('.info').show();
	
	$('#select_country').change(function() {
		$.post('script/get_plz.php', {
			country:$(this).val()
			}, function(data) {
			$('#select_plz').html(data);
		});
	});
	
	$('#select_plz').change(function() {
		$.post('script/get_haendler_data.php', {
			country:$('#select_country').val(),
			plz_gebiet:$('#select_plz').val()
			}, function(data) {
			$('#results').html(data);
			$('.info').hide();
		});
	});
});
