barseon,
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
.choicem{
cursor: pointer;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function() {
var s = $(".choicem");
s.click(function() {
var a = $.map($(this.parentNode).siblings(), function(el) {
return $(el).text()
})
alert(a)
});
});
</script>
</head>
<body>
<table> <tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>$11320,800</td>
<td><div class="choicem">выбрать</div></td>
</tr>
</table>
</body>
</html>