function showBaseInfo(baseStyle){
		
		var baseInfo
		
		switch (baseStyle){
		case 's1': 
		baseInfo='<h2>Base Model: S1</h2>'
					+ '<p class="base_info">All Clear skin Polyurethane base</p>'
					+ '<p class="base_info">Supports combed-back or parted hairstyle</p>'
					+ '<p class="base_info">Supports hair densities Extra-Light to Medium Plus</p>'
					+ '<p class="base_info">1 to 2 units/year for day wear, 2 plus units/year for bonding</p>';
		break;
		case 's2': 
		baseInfo='<h2>Base Model: S2</h2>'
					+ '<p class="base_info">Clear Skin front and part. Polyurethane coating all around for taping</p>'
					+ '<p class="base_info">Supports natural open or closed simulated parted hair style</p>'
					+ '<p class="base_info">Supports hair densities Medium Light to Medium Plus</p>'
					+ '<p class="base_info">1 to 2 units/year for day wear, 2 plus units/year for bonding</p>';
		break;
		case 's3': 
		baseInfo='<h2>Base Model: S3</h2>'
					+ '<p class="base_info">Clear skin front with polyurethane coating all around. Breathable fine mono net in center</p>'
					+ '<p class="base_info">Supports combed-back or parted hairstyle</p>'
					+ '<p class="base_info">Supports hair densities Light to Medium</p>'
					+ '<p class="base_info">1 to 2 units/year for day wear, 2 to 3 units/year for bonding</p>';
		break;
		case 'l1': 
		baseInfo='<h2>Base Model: L1</h2>'
					+ '<p class="base_info">1 inch lace front. Polyurethane coating all around for taping</p>'
					+ '<p class="base_info">Supports combed-back or parted hairstyle, front lace offers a natural hairline effect</p>'
					+ '<p class="base_info">Supports hair densities Light to Medium</p>'
					+ '<p class="base_info">1 to 2 units/year for day wear, 2 plus units/year for bonding</p>';
		break;
		case 'l2': 
		baseInfo='<h2>Base Model: L2</h2>'
					+ '<p class="base_info">1 inch lace front. Clear Skin polyurethane base</p>'
					+ '<p class="base_info">Supports combed-back or parted hairstyle, front lace offers a natural hairline effect</p>'
					+ '<p class="base_info">Supports hair densities Light to Medium</p>'
					+ '<p class="base_info">1 to 2 units/year for day wear, 2 plus units/year for bonding</p>';
		break;
		case 'l3': 
		baseInfo='<h2>Base Model: L3</h2>'
					+ '<p class="base_info">Full lace with coated polyurethane all around for taping</p>'
					+ '<p class="base_info">Supports combed-back or parted hairstyle, front lace offers a natural hairline effect</p>'
					+ '<p class="base_info">Supports hair densities Extra Light to Medium</p>'
					+ '<p class="base_info">1 to 2 units/year for day wear, 2 plus units/year for bonding</p>';
		break;
		case 'l4': 
		baseInfo='<h2>Base Model: L4</h2>'
					+ '<p class="base_info">Front lace with star shaped tape patches for added security. Polyurethane coating all around for taping. Breathable fine mono mesh in center</p>'
					+ '<p class="base_info">Supports combed-back or parted hairstyle, front lace offers a natural hairline effect</p>'
					+ '<p class="base_info">Supports hair densities  Light to Medium</p>'
					+ '<p class="base_info">1 to 2 units/year for day wear, 2 plus units/year for bonding</p>';
		break;
        case 'hand_write':
            baseInfo = '<h1>Tell us about the kind of base you\'d like</h1><textarea name="base_choice" style="width:100%;height:100px"></textarea>'

        break;
		}
		document.getElementById("baseInfo").innerHTML = baseInfo
		}
