This will change the dropdown list selected option on page load.
//picks the 2nd item in the dropdown list
$(document).ready(function() {
$('#AreaInterest option:selected').removeAttr('selected');
$('#AreaInterest option:nth-child(2)').attr('selected','selected');
});