bueno, aca te dejo un ejemplo de lo que estoy buscando
Código PHP:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
var total=0;
function sumar(valor) {
total += valor;
document.formulario.total.value=total;
}
function restar(valor) {
total-=valor;
document.formulario.total.value=total;
}
</script>
<title>Documento sin título</title>
</head>
<body>
<table width="647" border="1">
<tr>
<td width="177">Menu</td>
<td width="78">Por kilo </td>
<td width="117">por porcion </td>
<td width="216">Cantidad</td>
</tr>
<tr>
<td height="25">Milanesas</td>
<td><form id="form1" name="form1" method="post" action="">
<label>
<input name="por kilo" type="checkbox" onClick="onClick="if (this.checked) sumar(32); else restar(32)"" value="checkbox" />
por kilo</label>
</form> </td>
<td><form id="form2" name="form2" method="post" action="">
<label>
<input name="checkbox2" type="checkbox" onClick="onClick="if (this.checked) sumar(16); else restar(16)"" value="por porcion" />
por porcion</label>
</form> </td>
<td><form id="form3" name="form3" method="post" action="">
<label>cantidad
<input type="text" name="textfield" />
</label>
</form> </td>
</tr>
<tr>
<td height="25"> </td>
<td> </td>
<td>Total</td>
<td><form id="form4" name="form4" method="post" action="">
<label>total
<input type=text name=total value=0>
</label>
</form>
</td>
</tr>
</table>
</body>
</html>
me falta hacer andar el <input type="text" name="textfield" /> que es el de cantidad para que puedan poner la cantidad de porciones o de kilos que quieres me comprendes? y despues el toral se muestra en <input type=text name=total value=0>
gracias.