Mo codigo es :
Código HTML:
function validarcostos(formcostos) { if (formcostos.evento.selectedIndex != 1) { alert("Debe de Seleccionar su Evento"); formcostos.evento.focus(); return (false); } if (formcostos.costo.value.length < 2) { alert("Debe de ingresar datos en el campo \"Contenido de Servicios\"."); formcostos.costo.focus(); return (false); } return (true); } <!-- formulario --> <form onSubmit="return validarcostos(this)" name="formcostos" method="post" action="index.php?admin=costoguardado"> <table width="440" border="0" align="center" cellpadding="3" cellspacing="0"> <tr bgcolor="#E9F7FC"> <td class="textoform">Tipo de Evento </td> <td> <select name="evento" id="evento" class="formuusuarios"> <option value="Seleccione Evento">Seleccione Evento</option> <option value="Mujer">Mujer</option> <option value="TecnoOffice">TecnoOffice</option> <option value="ExpoNegocios">ExpoNegocios</option> <option value="ExpoMedica">ExpoMedica</option> </select> </td> </tr> <tr bgcolor="#E9F7FC"> <td valign="top" bgcolor="#E9F7FC" class="textoform">Costos del Evento</td> <td><textarea name="costo" cols="45" rows="25" class="formuusuarios" id="costo"></textarea></td> </tr> <tr bgcolor="#EEEEEE"> <td colspan="2"><div align="center"> <input name="guardar" type="submit" class="botonform" id="guardar" value=":: Guardar Costos ::"> </div></td> </tr> </table> </form>