document.mainform["display_choice"][1].checked = true;
should handle if you are not using the graphical buttons/checkboxes. if you are then you should also add something like
document.getElementById("display_choice_graphical").className += ' selected';
I don't remember the CSS class name off the top of my head, I hope this is the correct one.