/*
 * Insert additional purchase conditions. Copyright (c) FabulaTech LLP. http://www.fabulatech.com/
 * Requirements: jquery.
 */
$(document).ready(function(){
	$("select").change(function () {
		$(".Hidden").hide();
		var product = $(this).val();
		var cond = $("option:contains("+product+")").attr("class");
		$("#"+cond).show();
	});
});