

function dropDown(tgtID){
	
	for(i=0;i<100;i++){
		
			if(document.getElementById('stylist' + i) != null){
				document.getElementById('stylist' + i).style.display ='none';
			}
			
	}
	
	 document.getElementById(tgtID).style.display ='block';
	
	
}
