function chooseItem()
{
	if(document.getElementById('cboProduct').value == "")
	{
		document.getElementById('txtDescription').disabled="disabled";
		document.getElementById('txtPrice').disabled="disabled";
		document.getElementById('txtCode').disabled="disabled";	
		document.getElementById('txtDescription').value="";
		document.getElementById('txtPrice').value="";
		document.getElementById('txtCode').value="";
	}
	else
	{
		document.getElementById('txtDescription').disabled="";
		document.getElementById('txtPrice').disabled="";
		document.getElementById('txtCode').disabled="";
		
		if(document.getElementById('cboProduct').value == "P2")
		{			
			document.getElementById('txtDescription').value="Consulting Services 50 Hour Block";
			document.getElementById('txtPrice').value=6995;	
		/*	document.getElementById('txtPrice').value=0.01;	*/
			document.getElementById('txtCode').value="";
			document.getElementById('txtDescription').disabled="disabled";
			document.getElementById('txtPrice').disabled="disabled";		
			
		}
		else if(document.getElementById('cboProduct').value == "P3")
		{
			document.getElementById('txtDescription').value="Consulting Services 100 Hour Block";			
			document.getElementById('txtPrice').value=9995;
			/*document.getElementById('txtPrice').value=0.01; */
			document.getElementById('txtCode').value="";
			document.getElementById('txtDescription').disabled="disabled";
			document.getElementById('txtPrice').disabled="disabled";			
		}
		else
		{			
			document.getElementById('txtDescription').value=" ";
			document.getElementById('txtPrice').value="";
			document.getElementById('txtCode').value="";			
		}
	}
	
}