1$(document).ready(function(){
2
3 $(".yes").hide();
4 $(".no").hide();
5
6 $("#existing-subscriber").change(function(){
7
8 if ( $(this).val() == "Yes" ) {
9 $(".yes").show();
10 $(".no").hide();
11 }
12 if( $(this).val() == "No" ) {
13 $(".no").show();
14 $(".yes").hide();
15 }
16
17 });
18
19});