Use your advanced theme to override the form_fields(...) function.
In your function, check ($this->template=='ask'). If so, you want to reorder some elements of $form['fields'] before calling through to the default function. You can do this reordering by repeatedly putting an element to the end. Something like this to move the title field to the end:
if (isset($fields['title'])) {
$temp=$fields['title'];
unset($fields['title']);
$fields['title']=$temp;
}