The HTML5 spec specifies that disabled form fields should not be submitted with the form (3.1 bullet #2).
jQuery does it's best to follow the spec as far as expected results.
If you want data to be transmitted with a form, but you want to prevent a user from editing the value, you should use readonly="readonly" instead of disabled="disabled". Read only fields are just that, the user can read them, but not edit them.
As far as selection goes, you just need to use the jQuery factory method for selection:
$('input[id^="pre"], select[id^="pre"]')
And you can iterate over every element using the each function:
$('input[id^="pre"], select[id^="pre"]').each( function( index, element ){
...do stuff...
});