function display(obj,id1,id2,id3) 
{
	txt = obj.options[obj.selectedIndex].value;
	document.getElementById(id1).style.display = 'none';
	document.getElementById(id2).style.display = 'none';
	document.getElementById(id3).style.display = 'none';
	
	if ( txt.match(id1) ) 
	{
		document.getElementById(id1).style.display = 'block';
	}
	
	if ( txt.match(id2) ) 
	{
		document.getElementById(id2).style.display = 'block';
	}
	
	if ( txt.match(id3) ) 
	{
		document.getElementById(id3).style.display = 'block';
	}
}