You can do this on a per product basis if that applies better. Use the product options and do a product validation that makes it required to fill in. Something like this may do what you want it to:
Code:
if (product_option('Domain').value == '') {
alert('Domain must be specified before adding to cart.');
return false;
}
HTH!
Carrie