// JavaScript Document
$(function(){
$("input[name=business_type]").click(function() {
	//alert("here"+this.value);
		if(this.value=="indian")
	{
		$("#div_state").show();
		$("#div_country").hide();
	}
	else if(this.value=="international")
	{
		$("#div_state").hide();
		$("#div_country").show();
	}
	/*else if(this.value=="both")
	{
		$("#div_state").show();
		$("#div_country").show();
	}*/
	//	alert("here"+this.value);								
});
		//$("#div_state").show();
		//$("#div_country").hide();
});
