<html>
<head>
<title>
Удаление SELECT'-ов
</title>
</head>
<body>
<script type="text/javascript">
var x = document.createElement( 'SELECT' );
x.id = 'foo';
document.body.appendChild( x );
</script>
<a href="javascript://" onclick="var t = document.getElementById( 'foo' ); t.parentNode.removeChild( t );">
Удалить
</a>
</body>
</html>