I found this really great solution for a simple custom select box - it works beautifully however it only works for one select box. I've been tinkering with it for the past 2 or 3 hours and I can't for life of me figuring it out so that it works for all custom selects.
The issue is this line of code is very specific - I need it to output text that should be unique to the select box that it's being applied to
$(".out").text(str);
Here is the code in it's entirety:
$('select[name=Listing_Price_Max]').change(function () {
var str = "";
str = $(this).find(":selected").text();
$(".out").text(str);
}).trigger('change');
Credit to Sanddip for his helpful solution https://stackoverflow.com/a/16145673/1108360 - I just need to get a little more out of it. Any help would be much appreciated, thanks!