$(document).ready(function(){
	
	$("#contactForm_business").change(function(){
		if($(this).val() == '')
			$("#contactForm_otherBusiness").show();
		else
			$("#contactForm_otherBusiness").hide();
	});
	
});
