Using getDynamicElement with <Br/>

Using getDynamicElement with <Br/>

I've gotten this line of code to work, but when I add a <Br/> to format my field below it doesn't work.


My Field:

changeElementDescription("Have you been accepted in<Br/> your program of choice?", "You must be accepted into the college program of choice in order to apply for academic sponsorship.", "acceptanceProgram");


$(getDynamicElement(Have you been accepted in your program of choice?')).change(function(){

   var currentSelection = $(getDynamicElement('Have you been accepted on your program of choice?")).find(":selected").text();

    if(currentSelection == "Yes" || currentSelection =="")

     {

       $("#ProgramAcceptance").hide();

     }

     if(currentSelection == "No")

     {

       $("#ProgramAcceptance").show();

     }

});