The multiple select carries the selections across in an array, so that may be what is giving you issues.
if you are putting them all in one field, try using $field=implode("|",$_POST["Owned_Before"])
if you need to put them in seperate entries, just loop across the array.
Hope that helps