// JavaScript Document
function disp_text()
	{
	var w = document.myform.Cableexitlocation.selectedIndex;
	var selected_text = document.myform.Cableexitlocation.options[w].text;
	if(selected_text == "Top"){
		alert("Special Instructions: Vulcan is constantly developing new end fittings for this product. And although currently only a limited number of end fitting options are available; Vulcan continues to innovate product enhancements, so contact us today to find out the latest options or to discuss customizing a product for your application.");
	}
	}
	
function changeText2(){
	var w = document.myform.Cableexitlocation.selectedIndex;
	var selected_text = document.myform.Cableexitlocation.options[w].text;
	if (selected_text == "Top"){
						
		var oldHTML = document.getElementById('warning').innerHTML;
		var newHTML =  "<br><b>Special Instructions:</b><br> Vulcan is constantly developing new end fittings for this product. And although currently only a limited number of end fitting options are available; Vulcan continues to innovate product enhancements, so contact us today to find out the latest options or to discuss customizing a product for your application.";
		
		document.getElementById('warning').innerHTML = newHTML;
	
		}
	else{
		var newHTML =  "View Options";
		document.getElementById('warning').innerHTML = newHTML;
	}
}