$(document).ready(function() {
  $('#StudBG select').each(function(){
		soption = $(this.options[this.selectedIndex]);
		$(this).parent().find('.StudPreisEuro').html(soption.attr('euro'));
		$(this).parent().find('.StudPreisCent').html(soption.attr('cent'));
		$(this).parent().find('.StudPreisFuno').find('sup').html(soption.attr('funo')+')');
		$(this).parent().parent().find('a').attr('href','http://www.t-mobile.de/tarife/0,10821,17773-_'+soption.attr('tarifid')+',00.html');
  });  
  
	$('#StudBG').find('select').change(function() {
		soption = $(this.options[this.selectedIndex]);
		$(this).parent().find('.StudPreisEuro').html(soption.attr('euro'));
		$(this).parent().find('.StudPreisCent').html(soption.attr('cent'));
		$(this).parent().find('.StudPreisFuno').find('sup').html(soption.attr('funo')+')');
		$(this).parent().parent().find('a').attr('href','http://www.t-mobile.de/tarife/0,10821,17773-_'+soption.attr('tarifid')+',00.html');
	});
});

