Ponle un text al div
Entrega:     
   
Código Javascript
:
Ver original<script>
function radio(){
document.getElementById('cantidad').value=0;
for(i=1; i<=6 , i++)
    if(('radio'+i).checked)=='true'){
    document.getElementById('cantidad').value=document.getElementById('cantidad').value+document.getElementById('radio'+i).value;
    }
}
</script>