Hola.
Puedes hacerlo asi.
Tu codigo javacript quedaria asi:
Código Javascript
:
Ver original<script type="text/javascript">
*
$("#captchaform").submit(function(event){
* * //alert("hola");
event.preventDefault();
* *
* * $.ajax({
* * * * type: "post",
* * * * url: "compruebaCaptcha.php",
* * * * data: $("#captchaform").serialize(),
* * * * success: function(data){
if( data == 'captcha valido' )
{
$( '#verificaCaptcha' ).html( 'Captcha correcto!!' );
$( '#verificaCaptcha' ).show( 'slow' );
$( '#idDeTuFormulario' ).show( 'slow' );
}
* * * * * *
* * * * }
* * });
});
*
</script>
y en tu html tendria que agregar algo asi:
Código HTML:
Ver original<div id="idDeTuFormulario" style="display: none;"> aqui tu formulario
Eso es todo.
Saludos.