Form conditional fields problem

Form conditional fields problem

Hello;
I have a select box with option Newsletter unsubscription, if selected, then show the class unsuscribereason and hide classe message else then do the reverse. The code below works fine when i click on the option Newsletter unsubscription, the problem is that this condition didn't affect the form if :

- I just visited the page where form is located;
- When i reload the page.
jQuery only apply the condition when i click an option and didn't set it as default for the form whatever situation. So i don't know how to adapt this code, maybe .change event should be replaced by something else ? 
  1. jQuery('#Subject').change(function(){
  2.     if(jQuery(this).val() == "Newsletter unsubscription")
  3.     {        
  4.         jQuery('.unsuscribereason').show();
  5.         jQuery('.message').hide();
  6.     }else
  7.     {        
  8.         jQuery('.unsuscribereason').hide();
  9.         jQuery('.message').show();
  10.     }
  11.     });