jQuery( document ).ready( function( $ ) { $("#swpm-user-list").change( function() { $recipients = $("#swpm-recipient-emails"); if ( $recipients.val() == '' ) { $recipients.val( $(this).find("option:selected").attr("value") ); } else if ( $(this).val() != '' ) { $recipients.val( $recipients.val() + ',' + $(this).find("option:selected").attr("value") ); } $(this).find("option:selected").attr("disabled","disabled"); }) } );