Спасибо большое.. )
Однако, если выбрать не один и тот же option, то он встанет в поле textarea, получится так:
12312 1321 3854 51 84 18 18181 32 General Mitsubishi Clint MDV
поэтому, наверное правильнее будет оставить так:
<script>
$(document).ready(function(){
$("#brselect").change(function () {
var $str = "";
$("#brselect option:selected").each(function () {
$str += $(this).text() + " ";
});
$("#txtpastebr").text($str);
if ($("#txtpastebr").text()!="")
{
$("#txtpastebr").val($str + $("#txtpastebr").val());
}
})
.change();
});
</script>