// JavaScript Document

function displayShirtPrice(size){

var d;
var price;

if (size == "SM"){
price = "24.00";
	}
if (size == "MD"){
price = "24.00";
	}
if (size == "LG"){
price = "24.00";
	}
if (size == "XL"){
price = "24.00";
	}
if (size == "2X"){
price = "24.00";
	}
if (size == "3X"){
price = "24.00";
	}
	
d = document.getElementById('shirt_price');
d.innerHTML = "$ "+price;
d.style.fontWeight="bold";
 }
