function goCategory(sel) {
	var link = sel.options[sel.selectedIndex].value;
	window.location = "#" + link;
}

function selectCategory() {
	if($("#pods_form1_business_type").val() != "") {
		jQuery.ajax({
			type: "post",
			url: "<?php echo PODS_URL; ?>/ui/my_select_cat.php",
			data: "id=" + $("#pods_form1_business_type").val(),
			async:false,
			success: function(msg) {
				$("#business_type").hide();
				$("#business_type_content").html(msg);
			}
		});
	}

	return false;
}
