$(function() { 

	var modid = $('#VBRmodule').val();

	$('#VBRdodaj').parent().hide(); $('#VBRautoopis').parent().hide(); $('#VBRadres_sk').parent().hide(); $('#VBRtabele').parent().hide();
	if(modid == 1) { $('#VBRdodaj').parent().show(); $('#VBRautoopis').parent().show(); $('#VBRadres_sk').parent().show();
	} else if(modid == 6) { $('#VBRdodaj').parent().show(); $('#VBRadres_sk').parent().show();
	} else if(modid == 10) { $('#VBRtabele').parent().show(); } else if(modid == 11) { $('#VBRtabele').parent().show(); }

	$('#VBRmodule').change(function() {
		$('#VBRdodaj').parent().hide(); $('#VBRautoopis').parent().hide(); $('#VBRadres_sk').parent().hide(); $('#VBRtabele').parent().hide();
		if($(this).val() == 1) { $('#VBRdodaj').parent().show(); $('#VBRautoopis').parent().show(); $('#VBRadres_sk').parent().show();
		} else if($(this).val() == 6) { $('#VBRdodaj').parent().show(); $('#VBRadres_sk').parent().show();
		} else if($(this).val() == 10) { $('#VBRtabele').parent().show(); } else if($(this).val() == 11) { $('#VBRtabele').parent().show(); }
	});

});
