It looks like you're new here. If you want to get involved, click one of these buttons!
$(document).ready(function() {
$(\"#uploadify\").uploadify({
'uploader' : 'scripts/uploadify.swf',
'script' : 'scripts/uploadify.php',
'cancelImg' : 'cancel.png',
'folder' : 'uploads',
'queueID' : 'fileQueue',
'auto' : true,
'multi' : true
});
$(\"select\").change(function() {
var selected = $(this).val();
$(\"#uploadify\").uploadifySettings('folder', selected);
});
});