$(function() {	
	$()
	// Auto submitting
	$("form.autosubmit button[type='submit']").hide();
	$("form.autosubmit select").change(function() {
		var formName = $(this).parents("form").attr("name");
		// $("form[name='"+ formName +"'] button[type='submit']").click(); // This will be an ajax call when the ajax is done.
		$(this).parents("form").submit();
	});
	$(".jsHide").hide();
});
