I\'m using the jquery datepicker plugin at http://plugins.jquery.com/project/datepick with the datepicker validation plugin.
The "best answer" didn't work for me. I figured out that the validator was validating the date format even though I didn't ask it to. Here's my solution:
$('form').validate( rules: { MyDateControl:{ required:true, date:false } } );