Jeje pues cómo va a sumar si ni siquiera tienes indicado en primer lugar un form, después no hay ninguna función que sume y tercero tampoco indicas en dónde se almacenará el resultado.
Mira este código le hice unas modificaciones al tuyo:
Código:
<html>
<head>
<script language=javascript>
<!--
function Sumar(){
frmSuma.txtSuma.value = parseInt(frmSuma.PARTICIPANTE_AEP.value) + parseInt(frmSuma.PARTICIPANTE_NO_AEP.value) + parseInt(frmSuma.RESIDENTE.value);
}
-->
</script>
</head>
<body>
<form name="frmSuma">
<table>
<tr>
<td width="326" class="tabla">1 Participante miembro AEP</td>
<td width="134" class="textoder">335 &euro;</td>
<td width="139" class="textoder">415 &euro;</td>
<td width="133">
<div align="center">
<select name="PARTICIPANTE_AEP" size="1">
<option value="0" selected>0</option>
<option value="355">355&euro; </option>
<option value="415">415 &euro;</option>
</select>
</div>
</td>
</tr>
<tr>
<td width="326" class="tabla">2. Participante NO miembro AEP</td>
<td width="134" class="textoder">445 &euro;</td>
<td width="139" class="textoder">505 &euro;</td>
<td width="133">
<div align="center">
<select name="PARTICIPANTE_NO_AEP" size="1">
<option value="0" selected>0</option>
<option value="445">445 &euro;</option>
<option value="505">505 &euro;</option>
</select>
</div>
</td>
</tr>
<tr>
<td width="326" class="tabla">3 Participante Residente <sup>(1)</sup></td>
<td width="134" class="textoder">250 &euro;</td>
<td width="139" class="textoder">315 &euro;</td>
<td width="133">
<div align="center">
<select name="RESIDENTE">
<option value="0" selected>0</option>
<option value="250">250 &euro;</option>
<option value="315">315 &euro;</option>
</select>
</div>
</td>
</tr>
<tr>
<td>Total</td>
<td><input type="button" name="cmdSumar" value="Calcular" onClick=Sumar();></td>
<td>&nbsp;</td>
<td><input type="text" name="txtSuma"></td>
</table>
</form>
</body>
</html>
_________________
Ricardo Abraham