function showQuestion(q, state) {
	document.all.showState.innerHTML=q;
	document.all.showSelect.innerHTML='<select name="Rate_Special" ><option value="yes">Yes</option><option value="no" selected>No</option></select>';
}
function blankQuestion(){
	//document.all.showState.style.visibility='hidden';
	document.all.showState.innerHTML='';
	document.all.showSelect.innerHTML='';	
}

function stateQuestions() {
	
	switch (document.form1.state.options[document.form1.state.selectedIndex].value) {
		case "FL" :
				   showQuestion('Is this risk located in Dade or Broward County?', 'FL');
				   break;
		case "NY" :
				   showQuestion('Is the risk located within the following areas of New York - Bronx, Queens, Staten Island, Long Island, Manhatten?', 'NY');
				   break;
		case "IL" :
				   showQuestion('Is this risk located in the city of Chicago?', 'IL');
				   break;				   
		case "MI" :
				   showQuestion('Is this risk located in the city of Detroit?', 'MI');
				   break;
		case "CA" :
				   showQuestion('Is this risk located in the city of Los Angeles?', 'CA');
				   break;
		default :
				  blankQuestion();
				  break;
	}
}	