  $(document).ready(function(){
    $('#submit').attr('disabled', true);
	
  $('#captcha').change(function() {
    if ($(this).val() == 'GMRC09')
      $('#submit').removeAttr('disabled');
	});
			
  });