I have this https://jsfiddle.net/1zqgeq79/2/
This is the jquery I'm using to make the page refresh when a select has been changed and now I just need it to keep that selected option after the page loads.
$('.ProductDetails select').change(function () {
location.reload();
});
Since I have multiple items I know a (this) will have to be used, but I'm still learning jquery. Thanks for the help!