Yes, I selected each one and saved when I installed the plugin, just to see what the layouts looked like with our meetings in it. Wow! These are so great! Just what we needed!
I took a look at admin-gen.php (lines 114 – 115), where the error is thrown and it seem like these lines might be too general.
var x = document.getElementById("tsmp_layout").selectedIndex;
This line gets the index of whatever is selected in the tsmp_layout select input. (0, 1, or 2)
var dropDownValue = document.getElementsByTagName("option")[x].value;
This line gets the value of that index, but from all option tags on the page, not the options of your specific select. In my WordPress, there are other selects on the page rendered by other plugins.
Could this work, maybe? (I tested it and it works on my installation). This assigns x to the select itself and just gets the value (i see the value and the text are the same)
var x = document.getElementById("tsmp_layout");
var dropDownValue = x.value;