I'm not really sure exactly what you are going for, because that code was too hard to decipher.
Here's some code that will remove a div based on keyup. It removes the div that contains the same letter as what you typed. Not sure if that's similar to what you want, but hopefully this helps:
http://jsfiddle.net/h2fa4/1/
HTML:
<html>
<head><title>Remove Divs</title></head>
<body>
Enter a character to remove the div with the corresponding letter:
<input id="in" />
<br />
<div id="parent">
<div>A div</div>
<div>B div</div>
<div>C div</div>
<div>D div</div>
<div>A div</div>
<div>B div</div>
<div>C div</div>
<div>D div</div>
<div>A div</div>
<div>B div</div>
<div>C div</div>
<div>D div</div>
<div>A div</div>
<div>B div</div>
<div>C div</div>
<div>D div</div>
<div>A div</div>
<div>B div</div>
<div>C div</div>
<div>D div</div>
</div>
</body>
</html>
jQuery code:
$("#in").keyup(function(event) {
var val = String.fromCharCode(event.which);
$("#parent div:contains('" + val + "')").remove();
});