jQuery(document).ready( function($) {
	$('span.your-player-fan input:checked').each(function() {
		if ($(this).val() == 'Igralec-ka/Player') {
			$('span.majica').parent().show();
		} else {
			$('span.majica').parent().hide();
		}
	});
	
	$('input[name$="your-player-fan"]').change(function() {
		if ($(this).val() == 'Igralec-ka/Player') {
			$('span.majica').parent().show();
		} else {
			$('span.majica').parent().hide();
		}
	});
});
