var searchType = "";
jQuery(window).bind("load",function(){
	
	jQuery("#cmb_topic").bind("change",function(){
		if(jQuery(this).val()=="Request Application and Product Catalog"){
			jQuery("#address_details").show();
		}
		else{
			jQuery("#address_details").hide();
		}
	});
});	


