// JavaScript Document

$(document).ready(function(){

	$('#aufmerksam').bind("change", function(){
		if ($(this).val() != '' && $(this).val() != 'freunde'){
			$('.aufmersam_ext').hide();
			$('.'+$(this).val()).show();
      if ( $(this).val() == 'sonstiges'){ $('.sonstiges').show() };
		} else {
			$('.aufmersam_ext').hide();	
		}
	});

});
