function showNewPrice(value)
{
	var myArray = value.split('_');
	var total=parseFloat(myArray[0]) + parseFloat(<?=$price?>);
	
    if(myArray[1]==2)
      document.getElementById('new_price_div').innerHTML='<br> You have selected the 24 Month Support Plan.<br>$<?=$price?> - Software<br>$'+myArray[0]+ ' - 24 Month Support Plan <br> New total:<b> $'+total+ '</b>';
    else if(myArray[1]==3)  
            document.getElementById('new_price_div').innerHTML='<br> You have selected the 24 Month Support Plan.<br>$<?=$price?> - Software<br>$'+myArray[0]+ ' - 36 Month Support Plan <br> New total: <b>$'+total+ '</b>';
    else
     document.getElementById('new_price_div').innerHTML='';       
    
}

