I have a problem getting this to fire on iPhone 4, any ideas?
$(\'select\').change(function () { alert(\'you changed this\'); });
Try this
$('select').bind('change',function () { alert('you changed this'); });